home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
CodeWarrior Lite
/
Metrowerks C⁄C++ Lite
/
Headers
/
PPC Specific
/
alloca.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-12
|
215 b
|
15 lines
|
[
TEXT/MPCC
]
/*
* File: alloca.h
* ©1993-1995 metrowerks Inc. All rights reserved
*
* Content: alloca() support for Metrowerks C++ (PowerPC)
*
*/
#ifndef _ALLOCA
#define _ALLOCA
#define alloca(x) __alloca(x)
#endif